home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / macros / latex209 / contrib / misc / screen.sty < prev    next >
Text File  |  1989-12-21  |  726b  |  33 lines

  1. % SCREEN.STY is used to create a LaTeX document suitable for SCREENVIEWing.
  2.  
  3. \oddsidemargin=0pt      % for 1in left margin (which SCREENVIEW removes!)
  4. \evensidemargin=0pt     % ditto
  5. \textwidth=400pt        % so SCREENVIEW output will fit within 80 columns
  6.  
  7. % redefine all font sizes to be \normalsize
  8. \def\tiny{\normalsize}
  9. \def\scriptsize{\normalsize}
  10. \def\footnotesize{\normalsize}
  11. \def\small{\normalsize}
  12. \def\large{\normalsize}
  13. \def\Large{\normalsize}
  14. \def\LARGE{\normalsize}
  15. \def\huge{\normalsize}
  16. \def\Huge{\normalsize}
  17.  
  18. % redefine all font types to be \tt
  19. \def\em{\tt}
  20. \def\bf{\tt}
  21. \def\it{\tt}
  22. \def\sl{\tt}
  23. \def\sf{\tt}
  24. \def\sc{\tt}
  25. \def\rm{\tt}
  26.  
  27. % now typeset document using \tt and \raggedright
  28. \tt
  29. \raggedright
  30.  
  31.  
  32.  
  33.